From 38b329a29993365b3134447ca212947e3f814c9b Mon Sep 17 00:00:00 2001 From: Dominique Belhachemi Date: Wed, 28 Jan 2026 12:53:25 +0100 Subject: [PATCH] =?utf8?q?Fix=20FTBFS=20on=20PPC64:=20inlining=20failed=20?= =?utf8?q?in=20call=20to=20=E2=80=98always=5Finline=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Forwarded: no Last-Update: 2025-09-30 Gbp-Pq: Name 80_fix_ppc64_ftbfs.patch --- Common/Core/vtkDataArrayMeta.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Core/vtkDataArrayMeta.h b/Common/Core/vtkDataArrayMeta.h index 602305d3..8c37a968 100644 --- a/Common/Core/vtkDataArrayMeta.h +++ b/Common/Core/vtkDataArrayMeta.h @@ -32,7 +32,7 @@ #endif #if (defined(VTK_ALWAYS_OPTIMIZE_ARRAY_ITERATORS) || !defined(VTK_DEBUG_RANGE_ITERATORS)) && \ - !defined(VTK_COMPILER_MSVC) + !defined(VTK_COMPILER_MSVC) && !defined(__PPC64__) #define VTK_ITER_INLINE VTK_ALWAYS_INLINE #define VTK_ITER_ASSUME VTK_ASSUME_NO_ASSERT #define VTK_ITER_OPTIMIZE_START VTK_ALWAYS_OPTIMIZE_START -- 2.30.2